* @return this
*/
public Matrix4x3f set3x3(Matrix4x3f mat) {
MemUtil.INSTANCE.copy3x3(mat, this);
properties &= mat.properties;
return this;
}
* @return this
*/
public Matrix4x3f set3x3(Matrix4x3fc mat) {
if (mat instanceof Matrix4x3f) {
MemUtil.INSTANCE.copy3x3((Matrix4x3f) mat, this);
} else {
set3x3Matrix4x3fc(mat);
}